summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/fs_operate_range.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/fs_operate_range.h')
-rw-r--r--src/core/file_sys/fs_operate_range.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/file_sys/fs_operate_range.h b/src/core/file_sys/fs_operate_range.h
new file mode 100644
index 000000000..750999907
--- /dev/null
+++ b/src/core/file_sys/fs_operate_range.h
@@ -0,0 +1,20 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+namespace FileSys {
+
+enum class OperationId : s64 {
+ FillZero = 0,
+ DestroySignature = 1,
+ Invalidate = 2,
+ QueryRange = 3,
+ QueryUnpreparedRange = 4,
+ QueryLazyLoadCompletionRate = 5,
+ SetLazyLoadPriority = 6,
+
+ ReadLazyLoadFileForciblyForDebug = 10001,
+};
+
+} // namespace FileSys